net/http.http2stream.body (field)

9 uses

	net/http (current package)
		h2_bundle.go#L4291: 	body      *http2pipe       // non-nil if expecting DATA frames
		h2_bundle.go#L5267: 	if p := st.body; p != nil {
		h2_bundle.go#L5426: 	if st.body == nil {
		h2_bundle.go#L5432: 		st.body.CloseWithError(fmt.Errorf("sender tried to send more than declared Content-Length of %d bytes", st.declBodyBytes))
		h2_bundle.go#L5446: 			wrote, err := st.body.Write(data)
		h2_bundle.go#L5496: 		st.body.CloseWithError(fmt.Errorf("request declared a Content-Length of %d but only wrote %d bytes",
		h2_bundle.go#L5499: 		st.body.closeWithErrorAndCode(io.EOF, st.copyTrailersToHandlerRequest)
		h2_bundle.go#L5500: 		st.body.CloseWithError(io.EOF)
		h2_bundle.go#L5611: 	st.body = req.Body.(*http2requestBody).pipe // may be nil